@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav{
    width: 100%;
    height: 68px;
    background-color: black;
    line-height: 68px;
    padding: 0px 100px;
    position: sticky ;
    top: 0;
    z-index: 99;
   
}

nav.logo{
    height: 68px;
}

nav .logo img{
    height: 50px;
    float: left;
    border-radius: 12px;
    border: 1px solid black;
    margin: 8px;
    padding: 2px 8px;
    box-shadow: 1px 2px 20px 7px #121212;
}

nav ul{
    float: left;
}

nav ul li{
    display: inline-block;
    list-style: none;
    
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 0px 20px;
}


.slideshow-container {
    max-width: 1500px;
    position: relative;
}
  
  /* Hide the images by default */
  .mySlides {
    display: none;
}
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
  
  /* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: right;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: rgb(201, 201, 201);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.7s;
    animation-name: fade;
    animation-duration: 1.7s;
    background-color: #0e0e0e;
  }
  
  @-webkit-keyframes fade {
    from {opacity: 0.7}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: 0.7}
    to {opacity: 1}
  }


.threeDot{
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }



  
  .mySlides img{
      height: 89vh;
      filter: brightness(0.7);
  }













.filterDiv{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78%;
  margin: 20px auto;
}

select{
  padding: 9px 20px;
  width: 14%;
  margin-right: 7px;
  border: 2px solid rgb(117, 117, 117);
  background-color: black;
  color: whitesmoke;
  border-radius: 8px;
}


#myInput {
    
  background-position: 10px 12px;
  background-repeat: no-repeat;
  width: 70%;
  font-size: 16px;
  padding: 7px 20px;
  /* border: 1px solid #ddd; */
  border: 2px solid rgb(117, 117, 117);
  /* margin-bottom: 12px;
  margin-left: 340px; */
  margin-left: 7px;
  background-color: black;
  color: white;
  border-radius: 8px;
}

#myInput ::placeholder{
  color: white;
}


.bgGrey{
  background-color: rgb(14 14 14);
  padding: 35px 0;

}

.hr{
  width:90%;
  margin-left: 5%;
  margin-right: 5%;
  align-items: center;
  color: black;
}

h2{
  color: #c20711;
  margin-left: 70px;
  padding: 10px 0px 10px;
}




.flex-container {
    display: flex;
    flex-wrap: wrap;
      margin: 0 auto;
  width: 95%;
  justify-content: center;
}


.flex-container .column {
    background-color: #f1f1f1;
    /* width: 160px; */
    flex-basis:14% ;
    max-width: 300px;
    text-align: center;
    line-height: 17px;
    font-size: 30px;
    padding: 0px;
    margin: 16px 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
    color: white;
    transform: scale(1);
    /* transition: transform 0.1s ease-in-out,box-shadow 0.3s ease-in-out; */
    box-shadow: none;
    
}


.column img{
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.top-left{
  position: absolute;
  bottom: 0;
  right: 1px;
  left: 1px;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.555);
  padding: 13px 0;
  color: rgb(255, 255, 255);
  opacity: 0;
  transition: opacity 0.4s ease-in;
  transition-delay: 0.2s;
  z-index: 9;
}

.column:hover .top-left{
  opacity: 1;
}

.column:hover img{
  filter: blur(1.3px);
}

.column:hover{
  transform: scale(1.04);
  border: 1px solid white;
  box-shadow: 4px 5px 6px rgba(20, 20, 20, 0.918);
}



.noResult{
  font-size: 20px;
  font-weight: 500;
  color: #f2f2f2;
}











.footer{
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: white;
    padding: 6px 0;
    justify-content: center;
    
}

.footer a{
    color: rgb(255, 70, 70);
    text-decoration: none;
}
.footer .logo img{
  height: 50px;
    float: left;
    border-radius: 12px;
    border: 1px solid black;
    margin: 0px 6px;
    padding: 2px 8px;
    box-shadow: 1px 2px 20px 7px #111111;

}